From 21b17f9eaad4e7d1b7cf2950e8d113f8c79339ea Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 22 Oct 2018 16:18:51 +0100 Subject: [PATCH] automation: build with Ubuntu 18.04 Signed-off-by: Wei Liu Acked-by: Andrew Cooper --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bf6bf7d895..96d7e7f759 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -269,3 +269,35 @@ ubuntu-xenial-gcc-debug: CONTAINER: ubuntu:xenial debug: y XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-clang: + <<: *build + variables: + <<: *clang + CONTAINER: ubuntu:bionic + debug: n + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-clang-debug: + <<: *build + variables: + <<: *clang + CONTAINER: ubuntu:bionic + debug: y + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-gcc: + <<: *build + variables: + <<: *gcc + CONTAINER: ubuntu:bionic + debug: n + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-gcc-debug: + <<: *build + variables: + <<: *gcc + CONTAINER: ubuntu:bionic + debug: y + XEN_TARGET_ARCH: x86_64 -- 2.30.2